home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Pict2Ascii 1.03 / Panes / CDynamicEditField.h < prev    next >
Encoding:
Text File  |  1997-07-10  |  654 b   |  28 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    CDynamicEditField.h                            ©1997 BB's Team inc. All rights reserved
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LEditField.h>
  8.  
  9.  
  10. // Notification in Command form
  11. const CommandT    cmd_LooseFocus = 3000;
  12.  
  13.  
  14. class CDynamicEditField : public LEditField {
  15.  
  16. public:
  17.     enum { class_ID = 'DynE' };
  18.  
  19.     /* ctor */                        CDynamicEditField (LStream*);
  20.     static CDynamicEditField*        CreateDynamicEditFieldStream (LStream *);
  21.     void                            SetFontName (const Str255);
  22.  
  23. protected:
  24.     virtual void                    DontBeTarget();
  25.  
  26. private:
  27. };
  28.